home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / DEF / Define / Sections / def-class next >
Text File  |  1998-10-23  |  2KB  |  50 lines

  1. def-class class instruments section definition &rest sections definitions
  2.  
  3. Defines a class for one or more instruments for any number of sections. The classes consist of the following: Symbol, length, tonality, velocity, channel, program, controller and tempo. The instrument names can be supplied as a list of names or a single quoted name. Section names are arbitrary and refer to those root level entities you have defined with def-grammar.
  4.  
  5. (def-class zone (synth bass)
  6.    sect-a '(1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1)
  7.    sect-b '(1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1)
  8. )
  9.  
  10. Other classes are defined in a similar way. Each definition may have a number of sublists, each describing the entities used for a zone. If the number of the sublists equal the number of the zones defined for that section, then each zone is uniquely defined, otherwise the definitions are repeated over and over until all the zones are filled. If the definition is a flat list, then all of its contents will run through the zone boundaries. If the flat list contains less elements than needed to fill the section it is repeated. Use distribute to control this distribution in more specific manner.
  11.  
  12. Here are some more examples.
  13.  
  14. (def-class length synth
  15.    sect-a '((1/8) (1/16))
  16.    sect-b '((1/4 1/8) (1/16))
  17. )
  18.  
  19. (def-class symbol bass
  20.    sect-a '((a a a) (b b b))
  21.    sect-b '(c c c)
  22. )
  23.  
  24. When defining classes the zone must be the first class, and the length must be the second class, but after that the definition order is free. Zones and lengths are needed for the internal distributions to work correctly.
  25.  
  26. FOLLOW ALWAYS THIS ORDER:
  27. zone
  28. length
  29. free
  30.  
  31. Section Rules
  32.  
  33. A single list '(1/2 1/8) for a section continues through the zone boundaries at the length of the section. The values in a list are repeated over and over.
  34.  
  35. (def-class length instr
  36.    intro '(1/2 1/8)
  37. )
  38.  
  39. A nested list '((1/2 1/8)) starts at the beginning of a new zone and repeats through the zone for all zones of the section.
  40.  
  41. (def-class length instr
  42.    intro '((1/2 1/8))
  43. )
  44.  
  45. A nested list '((1/2 1/4) (1/8 1/4 1/2)) defines the patterns for each zone of the section. If there are more or less nested lists than there are zones, then these are truncated or expanded to match the number of zones. Each zone pattern repeats over and over while the zone lasts.
  46.  
  47. (def-class length instr
  48.    intro '((1/2 1/4) (1/8 1/4 1/2))
  49. )
  50.